home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / c / cc_pp / v020 / readme < prev   
Text File  |  1994-10-30  |  2KB  |  46 lines

  1. Feburary 16, 1994
  2.  
  3. This directory contains the 0.2 release of Compositional C++ (CC++).
  4. This is an Alpha release and as such is not yet in its final intended form.
  5. Please direct any relevant comments to cc++-bugs@cs.caltech.edu.
  6.  
  7. See the MANIFEST file in this directory for brief descriptions of the
  8. various files in this directory.
  9.  
  10. The files in this directory have been tarred and compressed.  Each of the CC++
  11. files is available in two formats: *.tar.gz (compressed via GNU's gzip) and
  12. *.tar.Z (compressed via the standard UNIX 'compress' program).  If you
  13. have gzip and gunzip, retrieve the *.tar.gz versions since gzip is a more
  14. efficient compressor and your download times will be less.  Be sure to
  15. transfer all of these files using the binary mode of ftp (type 'bin' at the
  16. ftp prompt before issuing the 'get' or 'mget').
  17.  
  18. A file ending in .tar.gz may be unpacked as follows:
  19.  
  20.   zcat file.tar.gz | tar -xvf -
  21.  
  22. (where zcat is the zcat provided with the GNU gzip package and not the zcat
  23. that is standard on UNIX systems.  The GNU zcat is backwards compatible with
  24. the standard UNIX zcat).
  25.  
  26. A file ending in .tar.Z may be unpacked in the same way:
  27.  
  28.   zcat file.tar.Z | tar -xvf -
  29.  
  30. (where zcat is the standard UNIX zcat _or_ the GNU zcat)
  31.  
  32. Alternatively, unpack using:
  33.  
  34.   gunzip file.tar.gz
  35.   tar -xvf file.tar
  36.  
  37. or using the standard UNIX uncompress program:
  38.  
  39.   uncompress file.tar.Z
  40.   tar -xvf file.tar
  41.  
  42. The 'tar' program is standard on most all operating systems that can build
  43. CC++.  The gzip, gunzip, and zcat programs are available from the /pub/gnu
  44. directory of prep.ai.mit.edu (via anonymous ftp).  Gzip is also available
  45. in the ./CC++/gnu directory of this ftp server.
  46.